aboutsummaryrefslogtreecommitdiff
path: root/src/routes/user/[user]/+page.gql
blob: a0ca87c1a90c0b3a2849d8d5603ff8e95af90148 (plain) (blame)
1
2
3
4
5
6
7
query Profile($id: Int!) {
	User(id: $id) {
		badges {
			id
		}
	}
}